c# check if array is empty

77

c# check if array is empty -

if(array == null || array.Length == 0)

c# empty array -

object[] emptyArray = new object[0]; 

Comments

Submit
0 Comments